1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
import * as React from "react"
import { type SearchParams } from "@/types/table"
import { getValidFilters } from "@/lib/data-table"
import { Skeleton } from "@/components/ui/skeleton"
import { DataTableSkeleton } from "@/components/data-table/data-table-skeleton"
import { DateRangePicker } from "@/components/date-range-picker"
import { Separator } from "@/components/ui/separator"
import { searchParamsCache } from "@/lib/admin-users/validations"
import { getAllCompanies, getAllRoles, getUserCountGroupByCompany, getUserCountGroupByRole, getUsers } from "@/lib/admin-users/service"
import { AdmUserTable } from "@/lib/admin-users/table/ausers-table"
interface IndexPageProps {
searchParams: Promise<SearchParams>
}
export default async function UserTable(props: IndexPageProps) {
const searchParams = await props.searchParams
const search = searchParamsCache.parse(searchParams)
const validFilters = getValidFilters(search.filters)
const promises = Promise.all([
getUsers({
...search,
filters: validFilters,
}),
getUserCountGroupByCompany(),
getUserCountGroupByRole(),
getAllCompanies(),
getAllRoles()
])
return (
<React.Suspense
fallback={
<DataTableSkeleton
columnCount={6}
searchableColumnCount={1}
filterableColumnCount={2}
cellWidths={["10rem", "40rem", "12rem", "12rem", "8rem", "8rem"]}
shrinkZero
/>
}
>
<div className="space-y-6">
<div>
<h3 className="text-lg font-medium">Vendor Admin User Management</h3>
<p className="text-sm text-muted-foreground">
협력업체의 유저 전체를 조회하고 어드민 유저를 생성할 수 있는 페이지입니다. 이곳에서 초기 유저를 생성시킬 수 있습니다. <br />생성 후에는 생성된 사용자의 이메일로 생성 통보 이메일이 발송되며 사용자는 이메일과 OTP로 로그인이 가능합니다.
</p>
</div>
<Separator />
<AdmUserTable promises={promises} />
</div>
</React.Suspense>
)
}
|